home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 2410 / 2410.xpi / chrome / content / foxmarks-manageroverlay.xul < prev    next >
Extensible Markup Language  |  2010-01-28  |  981b  |  34 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.  
  5.  Copyright 2006-2008 Foxmarks Inc.
  6.  
  7.  foxmarks-manageroverlay.xul: implements Foxmarks overlay into the 
  8.  Bookmarks Manager.
  9.  
  10. -->
  11.  
  12. <?xul-overlay href="chrome://foxmarks/content/foxmarks-statusbar.xul" ?>
  13. <!DOCTYPE dialog SYSTEM "chrome://foxmarks/locale/foxmarks.dtd">
  14. <?xml-stylesheet href="chrome://foxmarks/skin/foxmarks.css" type="text/css"?>
  15.  
  16. <overlay id="foxmarksManagerOverlay"
  17.       xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  18.  
  19.     <script src="foxmarks-uitools.js" />
  20.     <script src="foxmarks-settings.js" />
  21.  
  22.     <toolbox id="bookmarks-toolbox" >
  23.         <toolbar id="command-toolbar">
  24.             <toolbarseparator />
  25.             <toolbarbutton id="foxmarks-bm-sync" align="center"
  26.                     label="&manager.syncNow;" oncommand="Xmarks.Synch()" />
  27.         </toolbar>
  28.     </toolbox>  
  29.     <statusbar id="statusbar">
  30.         <statusbarpanel id="foxmarks-statusbarpanel" />
  31.     </statusbar>
  32.     
  33. </overlay>
  34.